home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1996 #6
/
Amiga Plus CD - 1996 - No. 06.iso
/
pd
/
grafik
/
picview202
/
rexx
/
slideshow.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-03-24
|
424b
|
22 lines
/****************************************************/
/* SlideShow.rexx $VER: 1.0 (25.03.96) for PicView */
/* (C) 1996 Holger Papajewski papa@ami.boerde.de */
/****************************************************/
OPTIONS RESULTS
ADDRESS "PICVIEW.1"
GETNEXTSELECT START
num = result
DO WHILE num ~= -1
SHOWPIC num TIMEOUT 15
IF result == 0 THEN DO
GETNEXTSELECT
num = result
END
ELSE num = -1
END